GET api/MerchantTransfer/Merchants?entityTypeCodes[0]={entityTypeCodes[0]}&entityTypeCodes[1]={entityTypeCodes[1]}&entityStatus={entityStatus}&varID={varID}&groupID={groupID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
entityTypeCodes

Collection of string

Required

entityStatus

string

Required

varID

string

Required

groupID

string

Required

Body Parameters

None.

Response Information

Resource Description

MerchantGroupTransferResult
NameDescriptionTypeAdditional information
MerchantCode

Collection of MerchantBase

None.

MerchantGroup

Collection of MerchantBase

None.

VARCode

Collection of MerchantBase

None.

EntityStatus

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "MerchantCode": [
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    },
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    }
  ],
  "MerchantGroup": [
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    },
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    }
  ],
  "VARCode": [
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    },
    {
      "EntityTypeCode": "sample string 1",
      "EntityCode": "sample string 2",
      "EntityCommonName": "sample string 3"
    }
  ],
  "EntityStatus": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<MerchantGroupTransferResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.MerchantTransfer">
  <EntityStatus xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </EntityStatus>
  <MerchantCode>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
  </MerchantCode>
  <MerchantGroup>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
  </MerchantGroup>
  <VARCode>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
    <MerchantBase>
      <EntityCode>sample string 2</EntityCode>
      <EntityCommonName>sample string 3</EntityCommonName>
      <EntityTypeCode>sample string 1</EntityTypeCode>
    </MerchantBase>
  </VARCode>
</MerchantGroupTransferResult>